#include <stddef.h> #include <stdio.h> #include <sys/types.h> #include <dirent.h>
int main (void) { DIR *dp; struct dirent *ep;
dp = opendir ("./"); if (dp != NULL) { while (ep = readdir (dp)) puts (ep->d_name); (void) closedir (dp); } else puts ("Couldn’t open the directory.");
return 0; }
This document was generated on November 5, 2024 using texi2html 5.0.